home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Environments
/
Small Eiffel 0.4.8
/
lib_show
/
bench5
/
link_list_bench.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-04-13
|
311 b
|
22 lines
|
[
TEXT/ttxt
]
-- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
-- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
--
class LINK_LIST_BENCH
inherit BENCH;
creation make
feature
make is
local
link_list: LINK_LIST[INTEGER];
do
!!link_list.make;
bench(link_list);
end;
end